Recursive least squares filter

The Recursive least squares (RLS) adaptive filter is an algorithm which recursively finds the filter coefficients that minimize a weighted linear least squares cost function relating to the input signals. This is in contrast to other algorithms such as the least mean squares (LMS) that aim to reduce the mean square error. In the derivation of the RLS, the input signals are considered deterministic, while for the LMS and similar algorithm they are considered stochastic. Compared to most of its competitors, the RLS exhibits extremely fast convergence. However, this benefit comes at the cost of high computational complexity,

Contents

Motivation

In general, the RLS can be used to solve any problem that can be solved by adaptive filters. For example, suppose that a signal d(n) is transmitted over an echoey, noisy channel that causes it to be received as

x(n)=\sum_{k=0}^q b_n(k) d(n-k)%2Bv(n%2B1)

where v(n) represents additive noise. We will attempt to recover the desired signal d(n) by use of a p%2B1-tap FIR filter, \mathbf{w}:

\hat{d}(n) = \sum_{k=0}^{p} w_n(k)x(n-k)=\mathbf{w}_n^\mathit{T} \mathbf{x}(n)

where \mathbf{x}_n=[x(n)\quad x(n-1)\quad\ldots\quad x(n-p)]^T is the vector containing the p most recent samples of x(n). Our goal is to estimate the parameters of the filter \mathbf{w}, and at each time n we refer to the new least squares estimate by \mathbf{w_n}. As time evolves, we would like to avoid completely redoing the least squares algorithm to find the new estimate for \mathbf{w}_{n%2B1}, in terms of \mathbf{w}_n.

The benefit of the RLS algorithm is that there is no need to invert matrices, thereby saving computational power. Another advantage is that it provides intuition behind such results as the Kalman filter.

Discussion

The idea behind RLS filters is to minimize a cost function C by appropriately selecting the filter coefficients \mathbf{w}_n, updating the filter as new data arrives. The error signal e(n) and desired signal d(n) are defined in the negative feedback diagram below:

The error implicitly depends on the filter coefficients through the estimate \hat{d}(n):

e(n)=d(n)-\hat{d}(n)

The weighted least squares error function C—the cost function we desire to minimize—being a function of e(n) is therefore also dependent on the filter coefficients:

C(\mathbf{\mathbf{w}_n})=\sum_{i=0}^{n}\lambda^{n-i}e^{2}(i)

where 0<\lambda\le 1 is the "forgetting factor" which gives exponentially less weight to older error samples.

The cost function is minimized by taking the partial derivatives for all entries k of the coefficient vector \mathbf{w}_{n} and setting the results to zero

\frac{\partial C(\mathbf{w}_{n})}{\partial w_{n}(k)}=\sum_{i=0}^{n}\,2\lambda^{n-i}e(i)\,\frac{\partial e(i)}{\partial w_{n}(k)}=\sum_{i=0}^{n}\,2\lambda^{n-i}e(i)\,x(i-k)=0

Next, replace e(n) with the definition of the error signal

\sum_{i=0}^{n}\lambda^{n-i}\left[d(i)-\sum_{l=0}^{p}w_{n}(l)x(i-l)\right]x(i-k)= 0

Rearranging the equation yields

\sum_{l=0}^{p}w_{n}(l)\left[\sum_{i=0}^{n}\lambda^{n-i}\,x(i-l)x(i-k)\right]= \sum_{i=0}^{n}\lambda^{n-i}d(i)x(i-k)

This form can be expressed in terms of matrices

\mathbf{R}_{x}(n)\,\mathbf{w}_{n}=\mathbf{r}_{dx}(n)

where \mathbf{R}_{x}(n) is the weighted sample correlation matrix for x(n), and \mathbf{r}_{dx}(n) is the equivalent estimate for the cross-correlation between d(n) and x(n). Based on this expression we find the coefficients which minimize the cost function as

\mathbf{w}_{n}=\mathbf{R}_{x}^{-1}(n)\,\mathbf{r}_{dx}(n)

This is the main result of the discussion.

Choosing \lambda

The smaller \lambda is, the smaller contribution of previous samples. This makes the filter more sensitive to recent samples, which means more fluctuations in the filter co-efficients. The \lambda=1 case is referred to as the growing window RLS algorithm.

Recursive algorithm

The discussion resulted in a single equation to determine a coefficient vector which minimizes the cost function. In this section we want to derive a recursive solution of the form

\mathbf{w}_{n}=\mathbf{w}_{n-1}%2B\Delta\mathbf{w}_{n-1}

where \Delta\mathbf{w}_{n-1} is a correction factor at time {n-1}. We start the derivation of the recursive algorithm by expressing the cross correlation \mathbf{r}_{dx}(n) in terms of \mathbf{r}_{dx}(n-1)

\mathbf{r}_{dx}(n) =\sum_{i=0}^{n}\lambda^{n-i}d(i)\mathbf{x}(i)
=\sum_{i=0}^{n-1}\lambda^{n-i}d(i)\mathbf{x}(i)%2B\lambda^{0}d(n)\mathbf{x}(n)
=\lambda\mathbf{r}_{dx}(n-1)%2Bd(n)\mathbf{x}(n)

where \mathbf{x}(i) is the {p%2B1} dimensional data vector

\mathbf{x}(i)=[x(i), x(i-1), \dots , x(i-p) ]^{T}

Similarly we express \mathbf{R}_{x}(n) in terms of \mathbf{R}_{x}(n-1) by

\mathbf{R}_{x}(n) =\sum_{i=0}^{n}\lambda^{n-i}\mathbf{x}(i)\mathbf{x}^{T}(i)
=\lambda\mathbf{R}_{x}(n-1)%2B\mathbf{x}(n)\mathbf{x}^{T}(n)

In order to generate the coefficient vector we are interested in the inverse of the deterministic autocorrelation matrix. For that task the Woodbury matrix identity comes in handy. With

A =\lambda\mathbf{R}_{x}(n-1) is (p%2B1)-by-(p%2B1)
U =\mathbf{x}(n) is (p%2B1)-by-1
V =\mathbf{x}^{T}(n) is 1-by-(p%2B1)
C =\mathbf{I}_1 is the 1-by-1 identity matrix

The Woodbury matrix identity follows

\mathbf{R}_{x}^{-1}(n) = \left[\lambda\mathbf{R}_{x}(n-1)%2B\mathbf{x}(n)\mathbf{x}^{T}(n)\right]^{-1}
= \lambda^{-1}\mathbf{R}_{x}^{-1}(n-1)
-\lambda^{-1}\mathbf{R}_{x}^{-1}(n-1)\mathbf{x}(n)
\left\{1%2B\mathbf{x}^{T}(n)\lambda^{-1}\mathbf{R}_{x}^{-1}(n-1)\mathbf{x}(n)\right\}^{-1} \mathbf{x}^{T}(n)\lambda^{-1}\mathbf{R}_{x}^{-1}(n-1)

To come in line with the standard literature, we define

\mathbf{P}(n) =\mathbf{R}_{x}^{-1}(n)
=\lambda^{-1}\mathbf{P}(n-1)-\mathbf{g}(n)\mathbf{x}^{T}(n)\lambda^{-1}\mathbf{P}(n-1)

where the gain vector g(n) is

\mathbf{g}(n) =\lambda^{-1}\mathbf{P}(n-1)\mathbf{x}(n)\left\{1%2B\mathbf{x}^{T}(n)\lambda^{-1}\mathbf{P}(n-1)\mathbf{x}(n)\right\}^{-1}
=\mathbf{P}(n-1)\mathbf{x}(n)\left\{\lambda%2B\mathbf{x}^{T}(n)\mathbf{P}(n-1)\mathbf{x}(n)\right\}^{-1}

Before we move on, it is necessary to bring \mathbf{g}(n) into another form

\mathbf{g}(n)\left\{1%2B\mathbf{x}^{T}(n)\lambda^{-1}\mathbf{P}(n-1)\mathbf{x}(n)\right\} =\lambda^{-1}\mathbf{P}(n-1)\mathbf{x}(n)
\mathbf{g}(n)%2B\mathbf{g}(n)\mathbf{x}^{T}(n)\lambda^{-1}\mathbf{P}(n-1)\mathbf{x}(n) =\lambda^{-1}\mathbf{P}(n-1)\mathbf{x}(n)

Subtracting the second term on the left side yields

\mathbf{g}(n) =\lambda^{-1}\mathbf{P}(n-1)\mathbf{x}(n)-\mathbf{g}(n)\mathbf{x}^{T}(n)\lambda^{-1}\mathbf{P}(n-1)\mathbf{x}(n)
=\lambda^{-1}\left[\mathbf{P}(n-1)-\mathbf{g}(n)\mathbf{x}^{T}(n)\mathbf{P}(n-1)\right]\mathbf{x}(n)

With the recursive definition of \mathbf{P}(n) the desired form follows

\mathbf{g}(n)=\mathbf{P}(n)\mathbf{x}(n)

Now we are ready to complete the recursion. As discussed

\mathbf{w}_{n} =\mathbf{P}(n)\,\mathbf{r}_{dx}(n)
=\lambda\mathbf{P}(n)\,\mathbf{r}_{dx}(n-1)%2Bd(n)\mathbf{P}(n)\,\mathbf{x}(n)

The second step follows from the recursive definition of \mathbf{r}_{dx}(n ). Next we incorporate the recursive definition of \mathbf{P}(n) together with the alternate form of \mathbf{g}(n) and get

\mathbf{w}_{n} =\lambda\left[\lambda^{-1}\mathbf{P}(n-1)-\mathbf{g}(n)\mathbf{x}^{T}(n)\lambda^{-1}\mathbf{P}(n-1)\right]\mathbf{r}_{dx}(n-1)%2Bd(n)\mathbf{g}(n)
=\mathbf{P}(n-1)\mathbf{r}_{dx}(n-1)-\mathbf{g}(n)\mathbf{x}^{T}(n)\mathbf{P}(n-1)\mathbf{r}_{dx}(n-1)%2Bd(n)\mathbf{g}(n)
=\mathbf{P}(n-1)\mathbf{r}_{dx}(n-1)%2B\mathbf{g}(n)\left[d(n)-\mathbf{x}^{T}(n)\mathbf{P}(n-1)\mathbf{r}_{dx}(n-1)\right]

With \mathbf{w}_{n-1}=\mathbf{P}(n-1)\mathbf{r}_{dx}(n-1) we arrive at the update equation

\mathbf{w}_{n} =\mathbf{w}_{n-1}%2B\mathbf{g}(n)\left[d(n)-\mathbf{x}^{T}(n)\mathbf{w}_{n-1}\right]
=\mathbf{w}_{n-1}%2B\mathbf{g}(n)\alpha(n)

where \alpha(n)=d(n)-\mathbf{x}^{T}(n)\mathbf{w}_{n-1} is the a priori error. Compare this with the a posteriori error; the error calculated after the filter is updated:

e(n)=d(n)-\mathbf{x}^{T}(n)\mathbf{w}_n

That means we found the correction factor

\Delta\mathbf{w}_{n-1}=\mathbf{g}(n)\alpha(n)

This intuitively satisfying result indicates that the correction factor is directly proportional to both the error and the gain vector, which controls how much sensitivity is desired, through the weighting factor, \lambda.

RLS algorithm summary

The RLS algorithm for a p-th order RLS filter can be summarized as

Parameters: p= filter order
\lambda= forgetting factor
\delta= value to initialize \mathbf{P}(0)
Initialization: \mathbf{w}_{n}=0,
x(k)=0, k=-p,\dots,-1,
\mathbf{P}(0)=\delta^{-1}I where I is the identity matrix of rank p%2B1
Computation: For n=0,1,2,\dots

 \mathbf{x}(n) = 
\left[
\begin{matrix}
x(n)\\
x(n-1)\\
\vdots\\
x(n-p)
\end{matrix}
\right]

 \alpha(n) = d(n)-\mathbf{x}^T(n)\mathbf{w}(n-1)
\mathbf{g}(n)=\mathbf{P}(n-1)\mathbf{x}(n)\left\{\lambda%2B\mathbf{x}^{T}(n)\mathbf{P}(n-1)\mathbf{x}(n)\right\}^{-1}
\mathbf{P}(n)=\lambda^{-1}\mathbf{P}(n-1)-\mathbf{g}(n)\mathbf{x}^{T}(n)\lambda^{-1}\mathbf{P}(n-1)
 \mathbf{w}(n) = \mathbf{w}(n-1)%2B\,\alpha(n)\mathbf{g}(n).

Note that the recursion for P follows a Riccati equation and thus draws parallels to the Kalman filter.[1]

Lattice recursive least squares filter (LRLS)

The Lattice Recursive Least Squares adaptive filter is related to the standard RLS except that it requires fewer arithmetic operations (order N). It offers additional advantages over conventional LMS algorithms such as faster convergence rates, modular structure, and insensitivity to variations in eigenvalue spread of the input correlation matrix. The LRLS algorithm described is based on a posteriori errors and includes the normalized form. The derivation is similar to the standard RLS algorithm and is based on the definition of d(k)\,\!. In the forward prediction case, we have d(k) = x(k)\,\! with the input signal x(k-1)\,\! as the most up to date sample. The backward prediction case is d(k) = x(k-i-1)\,\!, where i is the index of the sample in the past we want to predict, and the input signal x(k)\,\! is the most recent sample.[2]

Parameter Summary

\kappa_f(k,i)\,\! is the forward reflection coefficient
\kappa_b(k,i)\,\! is the backward reflection coefficient
e_f(k,i)\,\! represents the instantaneous a posteriori forward prediction error
e_b(k,i)\,\! represents the instantaneous a posteriori backward prediction error
\xi^d_{b_{min}}(k,i)\,\! is the minimum least-squares backward prediction error
\xi^d_{f_{min}}(k,i)\,\! is the minimum least-squares forward prediction error
\gamma(k,i)\,\! is a conversion factor between a priori and a posteriori errors
v_i(k)\,\! are the feedforward multiplier coefficients.
\epsilon\,\! is a small positive constant that can be 0.01

LRLS Algorithm Summary

The algorithm for a LRLS filter can be summarized as

Initialization:
For i = 0,1,...,N
 \delta(-1,i) = \delta_D(-1,i) = 0\,\! (if x(k) = 0 for k < 0)
 \xi^d_{b_{min}}(-1,i) = \xi^d_{f_{min}}(-1,i) = \epsilon
 \gamma(-1,i) = 1\,\!
 e_b(-1,i) = 0\,\!
End
Computation:
For k ≥ 0
 \gamma(k,0) = 1\,\!
 e_b(k,0) = e_f(k,0) = x(k)\,\!
 \xi^d_{b_{min}}(k,0) = \xi^d_{f_{min}}(k,0) = x^2(k) %2B \lambda\xi^d_{f_{min}}(k-1,0)\,\!
 e(k,0) = d(k)\,\!
 For i = 0,1,...,N
 \delta(k,i) = \lambda\delta(k-1,i) %2B \frac{e_b(k-1,i)e_f(k,i)}{\gamma(k-1,i)}
 \gamma(k,i%2B1) = \gamma(k,i) - \frac{e_b^2(k,i)}{\xi^d_{b_{min}}(k,i)}
 \kappa_b(k,i) = \frac{\delta(k,i)}{\xi^d_{f_{min}}(k,i)}
 \kappa_f(k,i) = \frac{\delta(k,i)}{\xi^d_{b_{min}}(k-1,i)}
 e_b(k,i%2B1) = e_b(k-1,i) - \kappa_b(k,i)e_f(k,i)\,\!
 e_f(k,i%2B1) = e_f(k,i) - \kappa_f(k,i)e_b(k-1,i)\,\!
 \xi^d_{b_{min}}(k,i%2B1) = \xi^d_{b_{min}}(k-1,i) - \delta(k,i)\kappa_b(k,i)
 \xi^d_{f_{min}}(k,i%2B1) = \xi^d_{f_{min}}(k,i) - \delta(k,i)\kappa_f(k,i)
 Feedforward Filtering
 \delta_D(k,i) = \lambda\delta_D(k-1,i) %2B \frac{e(k,i)e_b(k,i)}{\gamma(k,i)}
 v_i(k) = \frac{\delta_D(k,i)}{\xi^d_{b_{min}}(k,i)}
 e(k,i%2B1) = e(k,i) - v_i(k)e_b(k,i)\,\!
 End
End

Normalized lattice recursive least squares filter (NLRLS)

The normalized form of the LRLS has fewer recursions and variables. It can be calculated by applying a normalization to the internal variables of the algorithm which will keep their magnitude bounded by one. This is generally not used in real-time applications because of the number of division and square-root operations which comes with a high computational load.

NLRLS algorithm summary

The algorithm for a NLRLS filter can be summarized as

Initialization:
For i = 0,1,...,N
 \overline{\delta}(-1,i) = 0\,\! (if x(k) = d(k) = 0 for k < 0)
 \overline{\delta}_D(-1,i) = 0\,\!
 \overline{e}_b(-1,i) = 0\,\!
End
 \sigma_x^2(-1) = \lambda\sigma_d^2(-1) = \epsilon\,\!
Computation:
For k ≥ 0
 \sigma_x^2(k) = \lambda\sigma_x^2(k-1) %2B x^2(k)\,\! (Input signal energy)
 \sigma_d^2(k) = \lambda\sigma_d^2(k-1) %2B d^2(k)\,\! (Reference signal energy)
 \overline{e}_b(k,0) = \overline{e}_f(k,0) = \frac{x(k)}{\sigma_x(k)}\,\!
 \overline{e}(k,0) = \frac{d(k)}{\sigma_d(k)}\,\!
 For i = 0,1,...,N
 \overline{\delta}(k,i) = \delta(k-1,i)\sqrt{(1 - \overline{e}_b^2(k-1,i))(1 - \overline{e}_f^2(k,i))} %2B \overline{e}_b(k-1,i)\overline{e}_f(k,i)
 \overline{e}_b(k,i%2B1) = \frac{\overline{e}_b(k-1,i) - \overline{\delta}(k,i)\overline{e}_f(k,i)}{\sqrt{(1 - \overline{\delta}^2(k,i))(1 - \overline{e}_f^2(k,i))}}
 \overline{e}_f(k,i%2B1) = \frac{\overline{e}_f(k,i) - \overline{\delta}(k,i)\overline{e}_b(k-1,i)}{\sqrt{(1 - \overline{\delta}^2(k,i))(1 - \overline{e}_b^2(k-1,i))}}
 Feedforward Filter
 \overline{\delta}_D(k,i) = \overline{\delta}_D(k-1,i)\sqrt{(1 - \overline{e}_b^2(k,i))(1 - \overline{e}^2(k,i))} %2B \overline{e}(k,i)\overline{e}_b(k,i)
 \overline{e}(k,i%2B1) = \frac{1}{\sqrt{(1 - \overline{e}_b^2(k,i))(1 - \overline{\delta}_D^2(k,i))}}[\overline{e}(k,i) - \overline{\delta}_D(k,i)\overline{e}_b(k,i)]
 End
End

See also

References

Notes

  1. ^ Welch, Greg and Bishop, Gary "An Introduction to the Kalman Filter", Department of Computer Science, University of North Carolina at Chapel Hill, September 17, 1997, accessed July 19, 2011.
  2. ^ Albu, Kadlec, Softley, Matousek, Hermanek, Coleman, Fagan "Implementation of (Normalised) RLS Lattice on Virtex", Digital Signal Processing, 2001, accessed December 24, 2011.